IObserver interface¶
Defined in
Namespace: System.Reactive
Assembly: System.Reactive.dll
Full name: System.Reactive.IObserver<T1, T2>
Modifiers: public abstract
Summary¶
Provides a mechanism for receiving push-based notifications and returning a response.
Applies to
netstandard2.0
Methods¶
| Name | Summary |
|---|---|
| OnNext | Notifies the observer of a new element in the sequence. |
| OnError | Notifies the observer that an exception has occurred. |
| OnCompleted | Notifies the observer of the end of the sequence. |